projects
/
xen.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
4d934dd
)
[XM] Add missing parameter to XM XMLRPC call so that we get the
author
Alastair Tse
<atse@xensource.com>
Thu, 5 Oct 2006 17:22:13 +0000
(18:22 +0100)
committer
Alastair Tse
<atse@xensource.com>
Thu, 5 Oct 2006 17:22:13 +0000
(18:22 +0100)
devices in xm list --long
Signed-off-by: Alastair Tse <atse@xensource.com>
tools/python/xen/xm/main.py
patch
|
blob
|
history
diff --git
a/tools/python/xen/xm/main.py
b/tools/python/xen/xm/main.py
index 6827eae0430e9146699e22b78546a82fa4e80598..b14afcc8cca7c8c83d76b31680a42de74bdeae33 100644
(file)
--- a/
tools/python/xen/xm/main.py
+++ b/
tools/python/xen/xm/main.py
@@
-485,7
+485,7
@@
def getDomains(domain_names, full = 0):
if domain_names:
return [server.xend.domain(dom, full) for dom in domain_names]
else:
- return server.xend.domains(1)
+ return server.xend.domains(1
, full
)
def xm_list(args):